home *** CD-ROM | disk | FTP | other *** search
- #
- # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GX extender.
- #
-
- CFLAGS = -DMSDOS
-
- all: helpcall.exe ~\help\example.hlp
-
- helpcall.exe: wcle.tag link.rsp helpcall.obj
- xglu E(helpcall.exe) @link.rsp
-
- helpcall.obj: helpcall.c
- wcc386 $(CFLAGS) helpcall.c
-
- wcle.tag:
- del *.tag
- del *.obj
- del *.map
- del *.exp
- del *.exe
- del *.rsp
- echo >wcle.tag
-
- link.rsp: wcle
- echo helpcall.obj > link.rsp
- echo sys.lib >> link.rsp
- echo -format lin >> link.rsp
- echo -heapsize 1 >> link.rsp
- echo -stack 30000 >> link.rsp
- echo -noignore >> link.rsp
- echo -dosseg >> link.rsp
-
- ~\help\example.hlp:
- cd .\example
- helplib @example.rsp
- copy example.hlp ~\help\.
- del example.hlp
- cd ..
-